
Accessing Argo Data¶
Overview¶
Building upon previous notebook, Introduction to Argo, we next explore how to access Argo data using various methods.
These methods are described in more detail on their respective websites, linked below. Our goal here is to provide a brief overview of some of the different tools available.
- GO-BGC Toolbox
- Argopy, a dedicated Python package
- Argovis for API-based queries
After going through this notebook, you will be able to retrieve Argo data of interest within a certain time frame, geographical location, or by platform identifier. There are many other ways of working with Argo data, so we encourage users to explore what applications work best for their needs. Further information on Argo access can be found on the Argo website.
Prerequisites¶
Label the importance of each concept explicitly as helpful/necessary.
| Concepts | Importance | Notes |
|---|---|---|
| Intro to Numpy | Necessary | |
| Intro to NetCDF | Necessary | Familiarity with metadata structure |
| Intro to Xarray | Necessary |
- Time to learn: 20 min
Imports¶
Begin your body of content with another --- divider before continuing into this section, then remove this body text and populate the following code cell with all necessary Python imports up-front:
# Import packages
import sys
import os
import numpy as np
import pandas as pd
import scipy
import xarray as xr
from datetime import datetime, timedelta
import requests
import time
import urllib3
import shutil
import matplotlib.pyplot as plt
import matplotlib.colors as mcolors
import seaborn as sns
from cmocean import cm as cmo
from argovisHelpers import helpers as avh1. Downloading with the GO-BGC Toolbox¶
In the previous notebook, Introduction to Argo, we saw how Argo synthetic profile (‘sprof’) data is stored in netcdf4 format.
Using the GDAC function allows you to subset and download Sprof’s for multiple floats. We recommend this tool for users who only need a few profilesd in a specific area of interest. Considerations:
- Easy to use and understand
- Downloads float data as individual .nc files to your local machine (takes up storage space)
- Must download all variables available (cannot subset only variables of interest)
The two major functions below are courtesy of the GO-BGC Toolbox (Ethan Campbell). A full tutorial is available in the Toolbox.
# # Base filepath. Need for Argo GDAC function.z
# root = '/Users/sangminsong/Library/CloudStorage/OneDrive-UW/Code/2024_Pythia/'
# profile_dir = root + 'SOCCOM_GO-BGC_LoResQC_LIAR_28Aug2023_netcdf/'
# # Base filepath. Need for Argo GDAC function.
root = '../data/'
profile_dir = root + 'bgc-argo/'1.0 GO-BGC Toolbox Functions¶
# Function to download a single file (From GO-BGC Toolbox)
def download_file(url_path,filename,save_to=None,overwrite=False,verbose=True):
""" Downloads and saves a file from a given URL using HTTP protocol.
Note: If '404 file not found' error returned, function will return without downloading anything.
Arguments:
url_path: root URL to download from including trailing slash ('/')
filename: filename to download including suffix
save_to: None (to download to root Google Drive GO-BGC directory)
or directory path
overwrite: False to leave existing files in place
or True to overwrite existing files
verbose: True to announce progress
or False to stay silent
"""
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
if save_to is None:
save_to = root #profile_dir # EDITED HERE
try:
if filename in os.listdir(save_to):
if not overwrite:
if verbose: print('>>> File ' + filename + ' already exists. Leaving current version.')
return
else:
if verbose: print('>>> File ' + filename + ' already exists. Overwriting with new version.')
def get_func(url,stream=True):
try:
return requests.get(url,stream=stream,auth=None,verify=False)
except requests.exceptions.ConnectionError as error_tag:
print('Error connecting:',error_tag)
time.sleep(1)
return get_func(url,stream=stream)
response = get_func(url_path + filename,stream=True)
if response.status_code == 404:
if verbose: print('>>> File ' + filename + ' returned 404 error during download.')
return
with open(save_to + filename,'wb') as out_file:
shutil.copyfileobj(response.raw,out_file)
del response
if verbose: print('>>> Successfully downloaded ' + filename + '.')
except:
if verbose: print('>>> An error occurred while trying to download ' + filename + '.')# Function to download and parse GDAC synthetic profile index file (GO-BGC Toolbox)
def argo_gdac(lat_range=None,lon_range=None,start_date=None,end_date=None,sensors=None,floats=None,
overwrite_index=False,overwrite_profiles=False,skip_download=False,
download_individual_profs=False,save_to=None,verbose=True):
""" Downloads GDAC Sprof index file, then selects float profiles based on criteria.
Either returns information on profiles and floats (if skip_download=True) or downloads them (if False).
Arguments:
lat_range: None, to select all latitudes
or [lower, upper] within -90 to 90 (selection is inclusive)
lon_range: None, to select all longitudes
or [lower, upper] within either -180 to 180 or 0 to 360 (selection is inclusive)
NOTE: longitude range is allowed to cross -180/180 or 0/360
start_date: None or datetime object
end_date: None or datetime object
sensors: None, to select profiles with any combination of sensors
or string or list of strings to specify required sensors
> note that common options include PRES, TEMP, PSAL, DOXY, CHLA, BBP700,
PH_IN_SITU_TOTAL, and NITRATE
floats: None, to select any floats matching other criteria
or int or list of ints specifying floats' WMOID numbers
overwrite_index: False to keep existing downloaded GDAC index file, or True to download new index
overwrite_profiles: False to keep existing downloaded profile files, or True to download new files
skip_download: True to skip download and return: (, ,
)
or False to download those profiles
download_individual_profs: False to download single Sprof file containing all profiles for each float
or True to download individual profile files for each float
save_to: None to download to Google Drive "/GO-BGC Workshop/Profiles" directory
or string to specify directory path for profile downloads
verbose: True to announce progress, or False to stay silent
"""
# Paths
url_root = 'https://www.usgodae.org/ftp/outgoing/argo/'
dac_url_root = url_root + 'dac/'
index_filename = 'argo_synthetic-profile_index.txt'
if save_to is None: save_to = root
# Download GDAC synthetic profile index file
download_file(url_root,index_filename,overwrite=overwrite_index)
# Load index file into Pandas DataFrame
gdac_index = pd.read_csv(root + index_filename,delimiter=',',header=8,parse_dates=['date','date_update'],
date_parser=lambda x: pd.to_datetime(x,format='%Y%m%d%H%M%S'))
# Establish time and space criteria
if lat_range is None: lat_range = [-90.0,90.0]
if lon_range is None: lon_range = [-180.0,180.0]
elif lon_range[0] > 180 or lon_range[1] > 180:
if lon_range[0] > 180: lon_range[0] -= 360
if lon_range[1] > 180: lon_range[1] -= 360
if start_date is None: start_date = datetime(1900,1,1)
if end_date is None: end_date = datetime(2200,1,1)
float_wmoid_regexp = r'[a-z]*/[0-9]*/profiles/[A-Z]*([0-9]*)_[0-9]*[A-Z]*.nc'
gdac_index['wmoid'] = gdac_index['file'].str.extract(float_wmoid_regexp).astype(int)
filepath_main_regexp = '([a-z]*/[0-9]*/)profiles/[A-Z]*[0-9]*_[0-9]*[A-Z]*.nc'
gdac_index['filepath_main'] = gdac_index['file'].str.extract(filepath_main_regexp)
filepath_regexp = '([a-z]*/[0-9]*/profiles/)[A-Z]*[0-9]*_[0-9]*[A-Z]*.nc'
gdac_index['filepath'] = gdac_index['file'].str.extract(filepath_regexp)
filename_regexp = '[a-z]*/[0-9]*/profiles/([A-Z]*[0-9]*_[0-9]*[A-Z]*.nc)'
gdac_index['filename'] = gdac_index['file'].str.extract(filename_regexp)
# Subset profiles based on time and space criteria
gdac_index_subset = gdac_index.loc[np.logical_and.reduce([gdac_index['latitude'] >= lat_range[0],
gdac_index['latitude'] <= lat_range[1],
gdac_index['date'] >= start_date,
gdac_index['date'] <= end_date]),:]
if lon_range[1] >= lon_range[0]: # range does not cross -180/180 or 0/360
gdac_index_subset = gdac_index_subset.loc[np.logical_and(gdac_index_subset['longitude'] >= lon_range[0],
gdac_index_subset['longitude'] <= lon_range[1])]
elif lon_range[1] < lon_range[0]: # range crosses -180/180 or 0/360
gdac_index_subset = gdac_index_subset.loc[np.logical_or(gdac_index_subset['longitude'] >= lon_range[0],
gdac_index_subset['longitude'] <= lon_range[1])]
# If requested, subset profiles using float WMOID criteria
if floats is not None:
if type(floats) is not list: floats = [floats]
gdac_index_subset = gdac_index_subset.loc[gdac_index_subset['wmoid'].isin(floats),:]
# If requested, subset profiles using sensor criteria
if sensors is not None:
if type(sensors) is not list: sensors = [sensors]
for sensor in sensors:
gdac_index_subset = gdac_index_subset.loc[gdac_index_subset['parameters'].str.contains(sensor),:]
# Examine subsetted profiles
wmoids = gdac_index_subset['wmoid'].unique()
wmoid_filepaths = gdac_index_subset['filepath_main'].unique()
# Just return list of floats and DataFrame with subset of index file, or download each profile
if not skip_download:
downloaded_filenames = []
if download_individual_profs:
for p_idx in gdac_index_subset.index:
download_file(dac_url_root + gdac_index_subset.loc[p_idx]['filepath'],
gdac_index_subset.loc[p_idx]['filename'],
save_to=save_to,overwrite=overwrite_profiles,verbose=verbose)
downloaded_filenames.append(gdac_index_subset.loc[p_idx]['filename'])
else:
for f_idx, wmoid_filepath in enumerate(wmoid_filepaths):
download_file(dac_url_root + wmoid_filepath,str(wmoids[f_idx]) + '_Sprof.nc',
save_to=save_to,overwrite=overwrite_profiles,verbose=verbose)
downloaded_filenames.append(str(wmoids[f_idx]) + '_Sprof.nc')
return wmoids, gdac_index_subset, downloaded_filenames
else:
return wmoids, gdac_index_subset1.1 Using GDAC function to access Argo subsets¶
# Get all floats from chosen period
lat_bounds = [-70,-45] # used to be -70 to -30
lon_bounds = [10,70] # used to be 10, 60
# Try using more time buffer, 2 years.
start_yd = datetime(2017,4,20) # datetime(2019,4,30)
end_yd = datetime(2021,7,30) # datetime(2019,7,19)
# dont download, just get wmoids
wmoids, gdac_index = argo_gdac(lat_range=lat_bounds,lon_range=lon_bounds,
start_date=start_yd,end_date=end_yd,
sensors=None,floats=None,
overwrite_index=True,overwrite_profiles=False,
skip_download=True,download_individual_profs=False,
save_to=profile_dir,verbose=True)
# download specific float #5906030
# wmoids, gdac_index, downloaded_filenames \
# = argo_gdac(lat_range=None,lon_range=None,
# start_date=None,end_date=None,
# sensors=None,floats=5906030,
# overwrite_index=True,overwrite_profiles=False,
# skip_download=False,download_individual_profs=False,
# save_to=profile_dir,verbose=True)Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c821d9d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c821db20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff520841af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c81e63a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c81e6df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c81f2880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c81f9310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c81f9d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c81837f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c818b280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c818bcd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8196760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c819d1f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c819dc40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c81a66d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c81b0160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c81b0bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c81ba640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c81460d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8146b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c814c5b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8156040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8156a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c815f520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c815ff70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c816aa00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8172490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8172ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c817a970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8105400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8105e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c81118e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8116370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8116dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8122850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c812a2e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c812ad30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c81357c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80be250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80becd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80c6760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80d11f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80d1c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80da6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80e4160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80e4bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80ec640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80f80d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80f8b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80805b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8089040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8089a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8090520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8090f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c809ba00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80a5490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80a5ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80b0970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80b8400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80b8e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80428e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c804d370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c804ddc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8053850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c805c2e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c805cd30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c80687c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8070250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c8070ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c807a730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3fca1c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3fcac10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3fd26a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3fda130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3fdab80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3fe4610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3fed0a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3fedaf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ff8580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ff8fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f82a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f8a4f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f8af40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f959d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f9d460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f9deb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3fa7940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3fb03d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3fb0e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3fbc8b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f42340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f42d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f4d820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f552b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f55d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f5f790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f68220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f68c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f74700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f7a190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f7abe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f05670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f0f100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f0fb50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f175e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f20070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f20ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f2b550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f2bfa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f33a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f3e4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3f3ef10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ec59a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ecf460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ecfeb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ed9940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ee23d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ee2e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3eee8b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ef8340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ef8d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e83820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e8a2b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e8ad00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e95790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e9c220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e9cc70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ea9700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3eb2190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3eb2be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ebc670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e46100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e46b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e4f5e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e59070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e59ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e61550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e61fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e6ea30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e754c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3e75f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3bc09a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3bcb430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3bcbe80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3bd4910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3bde3a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3bdee20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3be68b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3bef340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3befd90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3bf9820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b862b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b86d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b8d790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b96220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b96c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ba1700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3bac190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3bacbe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3bb4670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3bbf100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3bbfb50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b465e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b51070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b51ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b5c550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b5cfa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b67a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b704c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b70f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b7a9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b7f430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b7fe80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b0c910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b183a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b18df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b20880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b2b310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b2bd60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b367f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b3c280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3b3ccd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ac8760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ad01f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ad0c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ada6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ae4160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ae4bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3aee640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3af70d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3af7b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3a815b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3a89040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3a89a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3a95520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3a95f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3a9da00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3aa8490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3aa8ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3ab4970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3abd400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3abde50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3a488e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3a4f370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3a4fdf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3a5b880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3a60310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3a60d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3a6c7f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3a76280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3a76cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35c0760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35c61f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35c6c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35d46d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35de160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35debb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35e8640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35f00d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35f0b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35f85b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3584070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3584ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c358f550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c358ffa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3597a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35a14c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35a1f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35af9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35b6430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35b6e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3540910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35483a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3548df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3554880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c355c310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c355cd60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35687f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3570280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3570cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c357b760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35051f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3505c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c350c6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3515160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3515bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3521640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c352b0d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c352bb20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c35355b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c353e040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c353ea90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34c7520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34c7f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34d2a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34da490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34daee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34e7970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34f2400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34f2e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34fa8e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3483370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3483dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c348f850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34962e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3496d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c349f7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34a9250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34a9ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34b6730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34be1c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34bec10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34496a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3452130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3452b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c345a610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34640a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3464af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c346f580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c346ffd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3476a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34034f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3403f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c340c9d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3410460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3410eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c341f940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c342a3d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c342ae20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c34358b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c343d340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4cbc90160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff5105f75e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33c5070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33c5ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33d0550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33d0fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33daa30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33e34c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33e3f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33ee9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33f7430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33f7e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3380910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c338b3a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c338bdf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3395880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c339f310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c339fd60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33aa7f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33b2280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33b2cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33bc760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33461f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3346c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c334d6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3358160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3358bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3365640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c336e0d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c336eb20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c33775b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3300040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3300a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c330a520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c330af70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3313a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c331e490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c331eee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3329970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3331400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3331e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c333b8e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32c3370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32c3dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32d0850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32d82e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32d8d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32e27c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32ea250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32eaca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32f6730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32fe1c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32fec10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32896a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3296130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3296b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c329e610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32a80a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32a8af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32b1580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32b1fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32baa60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32444f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3244f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c324f9d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3255460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3255eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3262940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c326a3d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c326ae20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32758b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c327d340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c327dd90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3208820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c32112b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3211d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c321d790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3224220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3224c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3230700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c323a190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c323abe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31c2670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31cb100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31cbb50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31d55e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31e3070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31e3ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31ea550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31eafa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31f2a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31fe4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31fef10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31889a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3192430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3192e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c319a910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31a23a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31a2df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31b0880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31b6310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31b6d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31417f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3149280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3149cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3154760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c315e1f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c315ec40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31696d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3171160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3171bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c317f640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c31060d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3106b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c310f5b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3118040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3118a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3127520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3127f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c312da00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3137490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3137ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30c0970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30ca400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30cae50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30d48e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30df370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30dfdc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30e9850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30f02e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30f0d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30fd7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3083250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3083ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3092730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30971c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3097c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30a36a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30ad130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30adb80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30b7610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30be0a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30beaf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3049580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3049fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3053a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c305c4f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c305cf40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30689d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c306f460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c306feb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c307b940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30053d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3005e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c300e8b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3015340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3015d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c3021820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c302a2b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c302ad30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c30337c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c303b250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c303bca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2fc7730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2fd31c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2fd3c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2fdd6a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2fe5130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2fe5b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2fee610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ffb0a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ffbb20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f835b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f8b040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f8ba90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f95520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f95f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2fa2a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2faa490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2faaee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2fb3970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2fbb400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2fbbe50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f478e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f52370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f52dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f5b850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f652e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f65d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f707c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f78250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f78ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f00730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f0b1c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f0bc10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f166a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f21130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f21b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f2c610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f340a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f34af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f3d580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2f3dfd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ec7a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ecf4f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ecff40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ed89d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ee5460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ee5eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2eee940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ef93d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ef9e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e838b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e8b340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e8bd90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e95820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e9d2b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e9dd00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2eaa790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2eb4220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2eb4cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ebd790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e46220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e46c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e51700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e5b190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e5bbe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e63670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e6e100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e6eb50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e775e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e01070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e01ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e09550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e09fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e15a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e1e4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e1ef10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e2a9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e2e430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e2ee80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2e3a910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2dc53a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2dc5df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2dd0880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2dd8310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2dd8d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2de57f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ded280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2dedcd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2df6760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d801f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d80c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d876d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d92160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d92bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d9e640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2da80d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2da8b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2db05b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2dbc040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2dbca90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d43520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d43f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d4da00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d55490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d55ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d63970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d6b400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d6be50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d778e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d7e370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d7edc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d09850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d112e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d11d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d1c7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d24250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d24ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d2f730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d371f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2d37c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2cc36d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2cce160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ccebb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2cd8640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ce00d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ce0b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2cea5b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2cf1040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2cf1a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2cff520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2cfff70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c87a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c90490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c90ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c9c970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ca3400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ca3e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2cad8e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2cb7370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2cb7dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c43850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c4c2e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c4cd30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c587c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c5f250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c5fca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c6b730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c731c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c73c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c7b6a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c04130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c04b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c10610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c1b0a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c1baf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c23580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c23fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c2da60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c384f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2c38f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2bc09d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2bcb460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2bcbeb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2bd3940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2bde3d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2bdee20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2be98b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2bf0340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2bf0d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2bfb820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b862b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b86d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b8f790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b98220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b98c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ba1700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2bae190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2baebe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2bb6670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b42100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b42b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b4a5e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b54070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b54ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b5d550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b5dfa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b67a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b6f4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b6ff10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b7c9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b02430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b02e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b0c910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b173a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b17df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b21880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b2b310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b2bd60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b347f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b3e280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2b3ecd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ac8760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ad21f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ad2c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2adc6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ae6160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ae6bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2aee640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2af90d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2af9b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a815b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a8b040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a8ba90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a97520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a97f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a9fa00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2aab490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2aabee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2ab4970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2abf400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2abfe50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a458e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a4d370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a4ddc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a5b850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a652e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a65d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a6e7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a79250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a79ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a01760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a0a1f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a0ac40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a146d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a20160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a20bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a29640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a330d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a33b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2a3b5b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29c6040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29c6a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29d1520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29d1f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29d9a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29e0490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29e0ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29e9970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29f6400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29f6e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29808e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2988370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2988dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2996850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c299f2e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c299fd30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29aa7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29b1250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29b1ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29bb730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29451c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2945c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c294e6a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2958130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2958b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2963610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c296d0a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c296daf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2975580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2975fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c297fa60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29054f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2905f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c29159d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c291d460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c291deb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2928940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c292f3d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c292fe20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c293c8b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28c3340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28c3d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28cd820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28d52b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28d5d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28e3790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28e8220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28e8c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28f5700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28fe190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28febe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2889670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2894100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2894b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c289b5e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28a4070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28a4ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28af550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28affa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28b9a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28434c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2843f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c284d9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2855430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2855e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2860910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28693a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2869df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2874880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c287e310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c287ed60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28067f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2810280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2810cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c281d760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c28241f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2824c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c282d6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2838160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2838bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27c1640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27cb0d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27cbb20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27d45b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27de040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27dea90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27ea520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27eaf70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27f1a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27fc490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27fcee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2784970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2791400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2791e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c279a8e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27a3370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27a3dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27ae850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27b82e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27b8d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27417c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2749250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2749ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2753730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c275c1c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c275cc10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27696a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2771130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2771b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c277c610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27050a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2705af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c270f580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c270ffa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2718a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c27204f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2720f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c272a9d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2735460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2735eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26c0940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26c83d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26c8e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26d48b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26dc340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26dcd90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26e6820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26ef2b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26efd00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26fa790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2682220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2682c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c268e700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2699190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2699be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26a1670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26a8100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26a8b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26b35e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26bd070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26bdac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2649550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2649fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2650a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c265b4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c265bf10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26679a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c266f430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c266fe80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2677910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26003a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2600df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c260d880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2618310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2618d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c26217f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2629280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2629cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2634760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c263e1f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c263ec40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25c46d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25d0160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25d0bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25da640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25e70d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25e7b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25ed5b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25f8040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25f8a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2582520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2582f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c258ba00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2594490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2594ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c259d970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25a7400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25a7e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25b38e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25bb370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25bbdf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25468b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c254f340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c254fd90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c255b820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25652b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2565d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c256a790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2577220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2577c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c257d700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c250c190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c250cbe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2515670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2520100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2520b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c25255e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2532070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2532ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2539550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2539fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24c6a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24cb4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24cbf10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24db9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24e0430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24e0e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24ed910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24f43a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24f4df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24fe880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2487310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2487d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24907f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2498280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2498cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24a5760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24b01f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24b0c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24b96d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2442160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2442bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c244d640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24580d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2458b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24625b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c246b040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c246ba90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2471520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2471f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2400a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2407490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2407ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2411970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2418400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2418e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c24288e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c242f370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c242fdc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2437850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23c02e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23c0d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23ce7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23d5250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23d5ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23de730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23e81c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23e8c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23ef6a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23ff130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23ffb80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2384610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23920a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2392af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2397580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2397fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23a5a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23ae4f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23aef40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23b99d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2341460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2341eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c234c940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c23553d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2355e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c235e8b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c236a340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c236ad90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2371820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c237b2b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c237bd00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2305790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c230e220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c230ec70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c231a700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2324190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2324be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c232a670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2337100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2337b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c233f5e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22cb070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22cbac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22d3550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22d3fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22e0a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22e74c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22e7f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22f29a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22fb430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22fbe80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2286910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c228e3a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c228edf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2298880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22a0310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22a0d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22ab7f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22b5280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22b5cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2244760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22491f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2249c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22556d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c225f160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c225fbb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2265640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22700d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2270b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c22785b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2203040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2203a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c220e520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c220ef70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2218a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2222490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2222ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c222e970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2235400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2235e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21c18e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21ca370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21cadc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21d2850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21de2e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21ded60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21e57f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21ef280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21efcd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21f8760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2182400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2182f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21929a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c219b430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c219be80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21a5910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21ae3a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21aedf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21b8880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2141310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2141d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c214d7f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2152280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2152cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c215f760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21681f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2168c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c21746d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c217c160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c217cbb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2107640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c210f0d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c210fb20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c211b5b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2123040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2123a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c212d520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c212df70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2137a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20c0490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20c0ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20cb970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20d5400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20d5e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20de8e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20e6370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20e6dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20ef850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20fa2e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20fad30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20847c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c208d250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c208dca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2099730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20a31c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20a3c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20ab6a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20b7130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20b7b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20bd610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c204c0a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c204caf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2053580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2053fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c205ba60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20674f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2067f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20719d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c207a460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c207aeb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2002940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c200b3d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c200be20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20198b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2024340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2024d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c202b820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c20342b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c2034d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c203d790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1fc8220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1fc8c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1fd1700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1fdc190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1fdcbe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1fe5670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ff1100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ff1b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ff85e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f82070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f82ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f8e550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f8efa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f98a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f9e4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f9ef10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1faa9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1fb4430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1fb4e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1fbe910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f483a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f48df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f51880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f59310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f59d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f637f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f6d280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f6dcd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f77760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f001f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f00c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f0d6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f17160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f17bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f21640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f290d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f29b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f325b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f3a040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1f3aa90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ec7520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ec7f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ed0a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1eda490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1edaee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ee2970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1eeb400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1eebe50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ef68e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1eff370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1effdc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e89850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e942e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e94d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e9f7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ea5250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ea5ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1eb1730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1eba1c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ebac10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e466a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e50130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e50b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e56610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e640a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e64af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e6d580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e6dfd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e76a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e004f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e00f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e0b9d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e12460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e12eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e1d940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e243d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e24e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e318b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e39340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1e39d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1dc5820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1dcc2b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1dccd00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1dd8790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1de1220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1de1c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1de9700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1df4190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1df4be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d80670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d8c100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d8cb50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d925e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d9d070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d9dac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1da5550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1da5fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1db0a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1db74c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1db7f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d449a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d4d430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d4de80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d57910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d5e3a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d5edf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d6b880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d73310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d73d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d7d7f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d05280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d05cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d11760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d1a1f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d1ac40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d266d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d2e160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d2ebb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1d36640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1cc10d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1cc1b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ccd5b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1cd4040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1cd4a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ce0520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ce0f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ce9a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1cf2490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1cf2ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1cfb970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c87400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c87e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c8e8e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c99370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c99dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ca0850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1cab2e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1cabd30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1cb87c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1cbe250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1cbeca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c4b730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c541c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c54c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c5f6a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c68130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c68b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c71610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c7c0a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c7caf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c06580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c06fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c0ea60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c184f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c18f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c229d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c2d460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c2deb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c34940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c3d3d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1c3de20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1bca8b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1bd3340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1bd3d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1bdd820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1be52b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1be5d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1bf0790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1bf9220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1bf9c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b84700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b8c190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b8cbe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b99670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ba3100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ba3b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ba95e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1bb4070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1bb4ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1bbd550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1bbdfa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b49a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b514c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b51f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b5d9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b66430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b66e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b71910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b793a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b79df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b02880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b0b310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b0bd60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b177f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b1e280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b1ecd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b29760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b331f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b33c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1b3d6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ac8160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ac8bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ad2640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1adb0d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1adbb20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ae45b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1aed040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1aeda90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1af6520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1af6f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a81a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a8b490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a8bee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a94970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a9f400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a9fe50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1aa88e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ab0370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1ab0dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1aba850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a462e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a46d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a4f7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a58250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a58ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a62730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a6d1c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a6dc10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a786a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a00130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a00b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a07610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a160a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a16af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a1e580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a1efd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a26a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a304f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a30f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1a3b9d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19c6460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19c6eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19cf940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19d63d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19d6e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19e48b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19ed340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19edd90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19f5820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19fe2b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19fed00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c198a790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1992220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1992c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c199c700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19a4190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19a4be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19b0670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19bd100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19bdb50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19465e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c194e070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c194eac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1957550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1957fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1963a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19694c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1969f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19769a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c197d430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c197de80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1909910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19113a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1911df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c191d880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1923310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1923d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c19307f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1937280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1937cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18c3760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18cd1f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18cdc40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18d36d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18e2160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18e2bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18eb640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18f30d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18f3b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18fc5b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1886040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1886a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1892520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1892f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1899a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18a3490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18a3ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18ad970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18b7400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18b7e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18428e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1849370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1849dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1852850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c185f2e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c185fd30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c186a7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1871250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1871ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1878730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18051c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1805c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c18106a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c181a130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c181ab80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c181f610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c182e0a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c182eaf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1838580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1838fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17c0a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17cc4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17ccf40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17d49d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17dd460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17ddeb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17e6940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17ef3d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17efe20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17fa8b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1786340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1786d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c178f820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17972b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1797d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c179e790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17ac220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17acc70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17b4700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17be190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17bebe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c174a670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1755100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1755b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c175c5e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1767070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1767ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c176f550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c176ffa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c177aa30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c17034c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1703f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c170d9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1719430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1719e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1723910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c172a3a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c172adf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1735880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c173d310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c173dd60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16c87f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16d0280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16d0cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16dc760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16e41f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16e4c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16ef6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16f8160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16f8bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1682640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c168c0d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c168cb20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16955b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c169f040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c169fa90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16aa520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16aaf70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16b5a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16bc490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16bcee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1648970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c164f400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c164fe50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16598e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1663370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1663dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c166a850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16752e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1675d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16027c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c160a250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c160aca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1614730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16211c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1621c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c16286a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1632130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1632b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1639610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15c80a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15c8af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15d0580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15d0fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15daa60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15e14f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15e1f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15ed9d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15f6460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15f6eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1580940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c158a3d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c158ae20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15938b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c159e340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c159ed90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15a7820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15b02b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15b0d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15ba790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1545220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1545c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c154e700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1556190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1556be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1563670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c156e100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c156eb50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15745e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c157f070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c157fac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c150a550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c150afa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1514a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c151c4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c151cf10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c15289a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1530430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1530e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1538910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14c43a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14c4df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14cd880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14d6310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14d6d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14e07f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14e7280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14e7cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14f5760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14fd1f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14fdc40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c148a6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1493160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1493bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c149d640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14a40d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14a4b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14b05b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14b7040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14b7a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1443520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1443f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c144ba00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1454490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1454ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c145c970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c146a400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c146ae50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14758e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c147b370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c147bdc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1406850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14102e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1410d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c141b7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1423250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1423ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c142d730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c14341c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1434c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13c36a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13cb130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13cbb80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13d3610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13e10a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13e1af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13e9580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13e9fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13f1a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13fc4f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13fcf40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13889d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1391460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1391eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1399940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13a03d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13a0e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13ad8b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13b8340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13b8d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1340820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13492b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1349d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1352790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c135c220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c135cc70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1368700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1371190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1371be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c137b670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1308100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1308b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13105e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1319070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1319ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1322550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1322fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c132da30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c13334c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1333f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c133f9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12ca430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12cae80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12d2910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12de3a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12dedf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12e7880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12ef310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12efd60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12f87f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1282280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1282cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c128d760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12971f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1297c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c129f6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12ab160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12abbb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12b6640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12be0d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12beb20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12475b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c124f040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c124fa90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c125c520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c125cf70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1265a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c126f490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c126fee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1277970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1203400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1203e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c120c8e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1215370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1215dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c121c850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12292e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1229d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c12337c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c123b250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c123bca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11c6730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11d01c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11d0c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11dc6a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11e5130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11e5b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11ea610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11f50a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11f5af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1184580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1184fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c118ca60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11954f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1195f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c119f9d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11a7460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11a7eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11b2940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11b93d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11b9e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11468b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c114f340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c114fd90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c115b820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11622b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1162d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c116d790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1175220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1175c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1100700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1109190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1109be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1115670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c111d100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c111db50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c11275e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1132070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1132ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1139550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1139fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10c5a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10ce4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10cef10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10da9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10e2430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10e2e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10ec910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10f03a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10f0df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1081880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1087310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1087d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10927f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1099280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1099cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10a5760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10af1f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10afc40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10bb6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1045160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1045bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c104d640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10580d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1058b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10605b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1069040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1069a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1075520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1075f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c107fa00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1008490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1008ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1011970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c101a400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c101ae50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c10248e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c102e370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c102edc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c1035850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0fc12e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0fc1d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0fce7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0fd5250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0fd5ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0fdf730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0fe91c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0fe9c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ff36a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ffc130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ffcb80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f86610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f910a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f91af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f9b580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f9bfd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0fa3a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0fae4f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0faef40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0fb79d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f43460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f43eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f49940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f543d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f54e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f5f8b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f68340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f68d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f73820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f7a2b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f7ad00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f06790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f0e220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f0ec70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f1a700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f21190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f21be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f2f670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f37100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0f37b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ec15e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0eca070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ecaac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ed4550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ed4fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0edda30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ee14c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ee1f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ef29a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0efb430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0efbe80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e86910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e8d3a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e8ddf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e97880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ea1310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ea1d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0eab7f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0eb2280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0eb2cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e40760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e481f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e48c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e536d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e5d160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e5dbb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e66640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e6f0d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e6fb20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e795b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e02040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e02a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e0c520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e0cf70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e17a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e20490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e20ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e2a970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e34400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e34e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0e3f8e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0dc8370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0dc8dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0dd0850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ddb2e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ddbd30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0de47c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0dee250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0deeca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0df6730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d821c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d82c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d8d6a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d97130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d97b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d9d610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0dab0a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0dabaf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0db3580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0db3fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0dbca60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d474f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d47f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d509d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d5a460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d5aeb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d64940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d6b3d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d6be20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d788b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d02340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d02d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d0b820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d152b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d15d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d1e790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d28220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d28c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d32700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d3b190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0d3bbe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0cc7670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0cd2100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0cd2b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0cd75e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ce2070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ce2ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0cec550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0cecfa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0cf6a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0cfe4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0cfef10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c8c9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c93430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c93e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c9e910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ca63a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ca6df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0cb3880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0cb9310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0cb9d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c457f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c4b280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c4bcd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c58760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c611f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c61c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c6b6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c74160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c74bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c00640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c0a0d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c0ab20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c135b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c1c040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c1ca90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c25520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c25f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c30a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c39490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0c39ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0bc3970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0bcc400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0bcce50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0bd88e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0bde370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0bdedc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0be7850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0bf22e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0bf2d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b807c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b87250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b87ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b92730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b9a1c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b9ac10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ba56a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0bb0130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0bb0b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0bb5610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b430a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b43af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b4d580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b4dfd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b56a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b604f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b60f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b699d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b72460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b72eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b7c940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b063d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b06e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b0f8b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b1b340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b1bd90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b26820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b2c2b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b2cd00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0b37790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ac0220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ac0c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0aca700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ad4190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ad4be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0adf670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ae9100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ae9b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0af25e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0afd070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0afdac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a86550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a86fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a90a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a974c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a97f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0aa39a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0aae430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0aaee80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0ab6910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0abf3a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0abfdf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a4a880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a52310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a52d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a5b7f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a65280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a65cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a70760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a7a1f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a7ac40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a066d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a0e160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a0ebb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a17640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a220d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a22b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a2a5b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a32040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a32a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a3f520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0a3ff70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09caa00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09d3490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09d3ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09dd970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09e5400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09e5e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09ef8e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09fa370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09fadc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0981850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c098c2e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c098cd30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09987c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c099f250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c099fca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09a9730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09b41c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09b4c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09bd6a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0948130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0948b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c094f610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c095d0a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c095daf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0965580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0965fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c096fa60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09774f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0977f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c09039d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c090b460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c090beb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0915940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c091e3d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c091ee20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c092a8b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0932340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0932d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c093c820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08c52b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08c5d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08d1790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08db220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08dbc70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08e2700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08ec190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08ecbe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08f9670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0884100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0884b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c088a5e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0895070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0895ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c089d550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c089dfa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08a7a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08af4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08aff10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08bd9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0845430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0845e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0851910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08583a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0858df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0862880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c086c310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c086cd60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08757f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c087d280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c087dcd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0809760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08121f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0812c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c081e6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0828160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0828bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c082e640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c08390d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0839b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07c75b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07ce040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07cea90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07d8520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07d8f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07e2a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07ea490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07eaee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07f4970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0780400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0780e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07868e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0791370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0791dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c079b850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07a42e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07a4d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07af7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07b8250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07b8ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0744730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c074c1c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c074cc10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07576a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0761130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0761b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0769610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07760a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0776af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c077e580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c077efd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0707a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07114f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0711f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c071c9d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0725460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0725eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c072b940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c07353d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0735e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06c58b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06cd340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06cdd90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06d6820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06df2b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06dfd00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06e8790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06f1220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06f1c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06fd700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0687190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0687be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0690670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c069c100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c069cb50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06a35e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06ad070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06adac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06b8550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06b8fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0643a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06494c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0649f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06569a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c065e430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c065ee80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0667910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06713a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0671df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c067b880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0605310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0605d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c060f7f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0617280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0617cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0622760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c062c1f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c062cc40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c06366d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05c1160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05c1bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05cb640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05d50d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05d5b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05dd5b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05e5040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05e5a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05f1520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05f1f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05faa00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0586490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0586ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c058c970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0597400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0597e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05a18e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05ab370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05abdc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05b2850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05bf2e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05bfd30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05487c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0551250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0551ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c055b730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05651c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0565c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0570670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0578130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0578b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c057f610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c050c0a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c050caf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0516580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0516fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c051fa60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c052c4f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c052cf40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c05349d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c053e460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c053eeb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04c7940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04d03d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04d0e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04db8b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04e5340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04e5d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04ef820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04f62b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04f6d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0483790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c048b220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c048bc70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0495700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c049f190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c049fbe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04aa670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04b3100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04b3b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04bd5e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0448070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0448ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c044f550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c044ffa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c045ba30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04614c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0461f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c046e9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0477430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0477e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0402910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04083a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0408df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0416880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c041a310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c041ad60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c04287f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c042e280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c042ecd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c043b760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03c61f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03c6c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03d16d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03da160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03dabb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03e1640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03ec0d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03ecb20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03f55b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03fe040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03fea90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c038a520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c038af70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0394a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c039d490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c039dee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03a7970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03af400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03afe50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03ba8e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0344370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0344dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c034b850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03562e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0356d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03627c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0369250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0369ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0374730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c037d1c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c037dc10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03086a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0314130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0314b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0319610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c03270a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0327af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0330580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0330fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0338a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02c44f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02c4f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02ce9d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02d7460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02d7eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02de940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02e73d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02e7e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02f48b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02ff340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02ffd90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0288820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c028f2b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c028fd00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c029b790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02a4220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02a4c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02ae700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02b6190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02b6be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0245670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c024d100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c024db50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02555e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c025e070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c025eac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0269550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0269fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0272a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c027c4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c027cf10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02089a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0210430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0210e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c021d910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c02233a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0223df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c022d880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0235310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0235d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01c17f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01c8280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01c8cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01d5760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01da1f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01dac40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01e96d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01f2160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01f2bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01fd640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01850d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0185b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01915b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0198040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0198a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01a2520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01a2f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01aca00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01b3490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01b3ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0140970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c014a400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c014ae50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01528e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c015b370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c015bdc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0165850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01702e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0170d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c017b7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0102250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0102ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c010e730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01181c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0118c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c01216a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c012a130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c012ab80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0133610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00c10a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00c1af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00c9580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00c9fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00d1a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00da4f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00daf40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00e69d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00f0460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00f0eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00f9940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00813d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0081e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c008f8b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0098340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0098d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c009f820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00aa2b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00aad00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00b2790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00be220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00bec70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0046700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c004f190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c004fbe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c005b670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0068100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0068b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c006f5e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0077070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0077ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0001550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0001fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c000da30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00154c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0015f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c00209a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0028430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0028e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c0031910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c003d3a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4c003ddf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bffc6880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bffcf310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bffcfd60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bffdb7f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bffe2280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bffe2cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bffed760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfff71f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfff7c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff826d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff8c160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff8cbb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff95640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff9e0d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff9eb20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bffa75b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bffb0040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bffb0a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bffbb520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bffbbf70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff44a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff4e490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff4eee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff58970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff62400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff62e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff6d8e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff73370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff73dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff7e850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff072e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff07d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff147c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff1b250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff1bca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff26730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff2f1c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff2fc10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bff3b6a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfec6130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfec6b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfeca610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfeda0a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfedaaf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfee2580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfee2fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfeeba60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfef54f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfef5f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe819d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe88460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe88eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe92940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe983d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe98e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfea58b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfeaf340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfeafd90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfeba820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe422b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe42d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe4e790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe56220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe56c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe60700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe69190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe69be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe71670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe7f100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe7fb50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe075e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe13070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe13ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe19550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe19fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe26a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe2c4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe2cf10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfe389a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfdc4430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfdc4e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfdcd910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfdd53a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfdd5df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfde0880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfde7310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfde7d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfdf27f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfdfa280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfdfacd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd86760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd8f1f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd8fc40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd976d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfda3160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfda3bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfdad640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfdb70d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfdb7b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd415b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd48040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd48a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd54520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd54f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd5ea00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd68490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd68ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd72970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd7b400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd7be50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd048e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd0e370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd0edc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd17850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd212e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd21d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd2d7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd34250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd34ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfd3c730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfcca1c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfccac10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfcd46a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfcdc130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfcdcb80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfce3610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfcf00a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfcf0af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfcfc580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfcfcfd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc84a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc8d4f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc8df40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc989d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfca1460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfca1eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfcaa940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfcb33d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfcb3e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc408b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc49340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc49d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc52820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc5b2b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc5bd00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc65790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc6f220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc6fc70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc79700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc01190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc01be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc0f670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc19100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc19b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc215e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc2a070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc2aac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc33550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc33fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfc3ea30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfbc74c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfbc7f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfbd19a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfbda430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfbdae80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfbe6910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfbed3a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfbeddf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfbf8880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb81310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb81d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb8b7f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb93280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb93cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb9f760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfba81f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfba8c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfbb36d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfbbf160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfbbfbb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb46640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb4f0d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb4fb20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb595b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb62040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb62a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb6d520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb6df70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb76a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb7f490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb7fee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb0a970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb16400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb16e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb1e8e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb27370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb27dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb2d850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb3c2e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfb3cd30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfac57c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bface250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfaceca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfad7730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfae21c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfae2c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfaeb6a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfaf5130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfaf5b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfafe610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa8c0a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa8caf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa94580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa94fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa9ca60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfaa64f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfaa6f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfab19d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfabc460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfabceb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa45940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa4a3d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa4ae20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa578b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa62340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa62d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa6b820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa732b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa73d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa7d790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa08220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa08c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa13700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa1c190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa1cbe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa25670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa32100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa32b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bfa3a5e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9c4070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9c4ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9cd550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9cdfa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9d8a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9de4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9def10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9eb9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9f2430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9f2e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9fd910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9883a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf988df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf992880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf999310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf999d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9a47f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9ac280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9accd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9b9760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9411f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf941c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf94b6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf956160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf956bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf95f640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9690d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf969b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9715b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf97d040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf97da90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf906520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf906f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf911a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf919490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf919ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf921970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf92d400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf92de50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf9388e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8c0370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8c0dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8c8850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8d32e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8d3d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8de7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8e6250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8e6ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8f0730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8fb1c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8fbc10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8876a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf890130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf890b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf895610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8a30a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8a3af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8ae580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8aefd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8b5a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8414f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf841f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf84a9d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf853460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf853eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf85c940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8643d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf864e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf8708b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf87c340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf87cd90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf805820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf80d2b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf80dd00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf819790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf820220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf820c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf82b700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf833190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf833be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7c0670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7ca100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7cab50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7d35e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7dc070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7dcac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7e5550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7e5fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7f0a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7f94c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7f9f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7859a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf78d430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf78de80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf796910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf79f3a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf79fdf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7ab880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7b2310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7b2d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7bd7f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf743280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf743cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf750760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf75a1f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf75ac40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7656d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf76e160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf76ebb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf779640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf7030d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf703b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf70c5b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf713040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf713a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf71f520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf71ff70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf729a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf732490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf732ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf73c970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6c6400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6c6e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6cf8e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6d9370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6d9dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6e0850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6ea2e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6ead30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6f87c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf681250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf681ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf68a730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6941c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf694c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf69d6a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6a8130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6a8b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6ad610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6bb0a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6bbaf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf645580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf645fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf64ea60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6584f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf658f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6639d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf66d460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf66deb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf674940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6003d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf600e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6098b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf614340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf614d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf61d820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf6262b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf626d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf62f790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf63a220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf63ac70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5c3700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5cd190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5cdbe0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5da670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5e2100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5e2b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5eb5e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5f5070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5f5ac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5ff550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5fffa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf588a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5904c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf590f10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf59c9a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5a5430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5a5e80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5b0910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5b83a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5b8df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf543880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf54b310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf54bd60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5567f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf55d280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf55dcd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf56a760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5701f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf570c40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf57f6d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf509160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf509bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf512640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf51a0d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf51ab20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf5245b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf52b040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf52ba90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf538520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf538f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4c4a00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4cb490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4cbee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4d6970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4de400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4dee50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4e98e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4f1370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4f1dc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4fb850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4852e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf485d30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4907c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf497250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf497ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4a2730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4a91c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4a9c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4b86a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf441130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf441b80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf449610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4570a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf457af0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf45f580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf45ffd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf468a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4704f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf470f40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf47c9d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf405460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf405eb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf40f940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4153d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf415e20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf4248b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf42b340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf42bd90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf437820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3c02b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3c0d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3c9790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3d3220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3d3c70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3dc700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3e6190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3e6be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3f0670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3fc100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3fcb50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3855e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf38d070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf38dac0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf396550>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf396fa0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3a0a30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3aa4c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3aaf10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3b69a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3bf430>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3bfe80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf347910>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3513a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf351df0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf35c880>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf365310>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf365d60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf36e7f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf377280>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf377cd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf303760>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf30c1f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf30cc40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3166d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf320160>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf320bb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf32b640>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf3330d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf333b20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf33f5b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2c6040>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2c6a90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2d0520>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2d0f70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2daa00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2e4490>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2e4ee0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2eb970>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2f8400>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2f8e50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2828e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf28a370>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf28adc0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf292850>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf29d2e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf29dd30>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2aa7c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2b2250>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2b2ca0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2bc730>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2451c0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf245c10>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2516a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf25b130>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf25bb80>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf260610>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf26d0a0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf26daf0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf278580>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf278fd0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf201a60>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf20c4f0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf20cf40>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf2149d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf21e460>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf21eeb0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf228940>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf22f3d0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf22fe20>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf23b8b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf1c5340>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf1c5d90>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf1d0820>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf1d72b0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf1d7d00>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf1e2790>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf1ea220>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf1eac70>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf1f6700>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf180190>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf180be0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf189670>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf194100>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf194b50>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf1985e0>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
Error connecting: HTTPSConnectionPool(host='www.usgodae.org', port=443): Max retries exceeded with url: /ftp/outgoing/argo/argo_synthetic-profile_index.txt (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7ff4bf1a8070>: Failed to resolve 'www.usgodae.org' ([Errno -3] Temporary failure in name resolution)"))
>>> An error occurred while trying to download argo_synthetic-profile_index.txt.
---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
Cell In[5], line 10
7 end_yd = datetime(2021,7,30) # datetime(2019,7,19)
9 # dont download, just get wmoids
---> 10 wmoids, gdac_index = argo_gdac(lat_range=lat_bounds,lon_range=lon_bounds,
11 start_date=start_yd,end_date=end_yd,
12 sensors=None,floats=None,
13 overwrite_index=True,overwrite_profiles=False,
14 skip_download=True,download_individual_profs=False,
15 save_to=profile_dir,verbose=True)
17 # download specific float #5906030
18 # wmoids, gdac_index, downloaded_filenames \
19 # = argo_gdac(lat_range=None,lon_range=None,
(...)
23 # skip_download=False,download_individual_profs=False,
24 # save_to=profile_dir,verbose=True)
Cell In[4], line 44, in argo_gdac(lat_range, lon_range, start_date, end_date, sensors, floats, overwrite_index, overwrite_profiles, skip_download, download_individual_profs, save_to, verbose)
41 download_file(url_root,index_filename,overwrite=overwrite_index)
43 # Load index file into Pandas DataFrame
---> 44 gdac_index = pd.read_csv(root + index_filename,delimiter=',',header=8,parse_dates=['date','date_update'],
45 date_parser=lambda x: pd.to_datetime(x,format='%Y%m%d%H%M%S'))
47 # Establish time and space criteria
48 if lat_range is None: lat_range = [-90.0,90.0]
File ~/micromamba/envs/sklearn-argo-dev/lib/python3.9/site-packages/pandas/io/parsers/readers.py:1026, in read_csv(filepath_or_buffer, sep, delimiter, header, names, index_col, usecols, dtype, engine, converters, true_values, false_values, skipinitialspace, skiprows, skipfooter, nrows, na_values, keep_default_na, na_filter, verbose, skip_blank_lines, parse_dates, infer_datetime_format, keep_date_col, date_parser, date_format, dayfirst, cache_dates, iterator, chunksize, compression, thousands, decimal, lineterminator, quotechar, quoting, doublequote, escapechar, comment, encoding, encoding_errors, dialect, on_bad_lines, delim_whitespace, low_memory, memory_map, float_precision, storage_options, dtype_backend)
1013 kwds_defaults = _refine_defaults_read(
1014 dialect,
1015 delimiter,
(...)
1022 dtype_backend=dtype_backend,
1023 )
1024 kwds.update(kwds_defaults)
-> 1026 return _read(filepath_or_buffer, kwds)
File ~/micromamba/envs/sklearn-argo-dev/lib/python3.9/site-packages/pandas/io/parsers/readers.py:620, in _read(filepath_or_buffer, kwds)
617 _validate_names(kwds.get("names", None))
619 # Create the parser.
--> 620 parser = TextFileReader(filepath_or_buffer, **kwds)
622 if chunksize or iterator:
623 return parser
File ~/micromamba/envs/sklearn-argo-dev/lib/python3.9/site-packages/pandas/io/parsers/readers.py:1620, in TextFileReader.__init__(self, f, engine, **kwds)
1617 self.options["has_index_names"] = kwds["has_index_names"]
1619 self.handles: IOHandles | None = None
-> 1620 self._engine = self._make_engine(f, self.engine)
File ~/micromamba/envs/sklearn-argo-dev/lib/python3.9/site-packages/pandas/io/parsers/readers.py:1880, in TextFileReader._make_engine(self, f, engine)
1878 if "b" not in mode:
1879 mode += "b"
-> 1880 self.handles = get_handle(
1881 f,
1882 mode,
1883 encoding=self.options.get("encoding", None),
1884 compression=self.options.get("compression", None),
1885 memory_map=self.options.get("memory_map", False),
1886 is_text=is_text,
1887 errors=self.options.get("encoding_errors", "strict"),
1888 storage_options=self.options.get("storage_options", None),
1889 )
1890 assert self.handles is not None
1891 f = self.handles.handle
File ~/micromamba/envs/sklearn-argo-dev/lib/python3.9/site-packages/pandas/io/common.py:873, in get_handle(path_or_buf, mode, encoding, compression, memory_map, is_text, errors, storage_options)
868 elif isinstance(handle, str):
869 # Check whether the filename is to be opened in binary mode.
870 # Binary mode does not support 'encoding' and 'newline'.
871 if ioargs.encoding and "b" not in ioargs.mode:
872 # Encoding
--> 873 handle = open(
874 handle,
875 ioargs.mode,
876 encoding=ioargs.encoding,
877 errors=errors,
878 newline="",
879 )
880 else:
881 # Binary mode
882 handle = open(handle, ioargs.mode)
FileNotFoundError: [Errno 2] No such file or directory: '../data/argo_synthetic-profile_index.txt'# DSdict = {}
# for filename in os.listdir(profile_dir):
# if filename.endswith(".nc"):
# fp = profile_dir + filename
# single_dataset = xr.open_dataset(fp, decode_times=False)
# DSdict[filename[0:7]] = single_dataset
# # DSdict['5906030']2. Using the Argopy Python Package¶
argopy is a python package that facilitates access and manipulation of Argo data from all available data sources. The documentation is available here.
The package allows you to use python to select subsets of Argo data, including data from:
- a) All available data within a “box” (geospatial area and timeframe)
- b) A specific float
- c) A specific float profile
The code here is adapted from the argopy documentation and associated examples.
Imports¶
from argopy import DataFetcher # This is the class to work with Argo data
from argopy import ArgoIndex # This is the class to work with Argo index
from argopy import ArgoNVSReferenceTables # This is the class to retrieve data from Argo reference tables
from argopy import ArgoColors # This is a class with usefull pre-defined colors
from argopy.plot import scatter_map, scatter_plot # This is a function to easily make maps
# Make a fresh start
import argopy
argopy.reset_options()
argopy.clear_cache()
argopy.set_options(cachedir='cache_bgc')
#
import numpy as np
import matplotlib as mpl
from matplotlib import pyplot as plt
import cmocean
import xarray as xr
xr.set_options(display_expand_attrs = False)import logging
logging.getLogger("matplotlib").setLevel(logging.ERROR)
logging.getLogger("pyproj").setLevel(logging.ERROR)
logging.getLogger("fsspec").setLevel(logging.ERROR)
logging.getLogger("parso").setLevel(logging.ERROR)
logging.getLogger("asyncio").setLevel(logging.ERROR)
DEBUGFORMATTER = '%(asctime)s [%(levelname)s] [%(name)s] %(filename)s:%(lineno)d: %(message)s'
logging.basicConfig(
level=logging.DEBUG,
format=DEBUGFORMATTER,
datefmt='%I:%M:%S %p',
handlers=[logging.FileHandler("nb-docs.log", mode='w')]
)a) Fetching data for all profiles within a geographic box¶
Define the geographic region you want to investigate within the BOX variable:
# Format: [lon_min, lon_max, lat_min, lat_max, pres_min, pres_max, datim_min, datim_max]
BOX = [-56, -45, 54, 60, 0, 2000, '2022-01', '2023-01']Retrieve the data:¶
argopy works by constructing a “Fetcher” object, named “f” here. When we define f, we specify the kinds of data we want, and also how we want to process it.
Input arguments:
- ds: specifies what Argo dataset to retrieve
- “phy”: physical Argo data (Temperature, Salinity, Pressure)
- “bgc”: biogeochemical data. Note that BGC data can only be retrieved in expert mode (real-time, no QC) as of now (2024-06-13)
- mode: specifies the level of data QC you want
- “expert”: returns all Argo data. This is raw data with no QC or postprocessing
- “standard”: this includes real-time data that has undergone automated QC and is probably good quality, but has not been checked by a human
- “resesarch”: this is the most trustworthy data, and only includes delayed mode data that has undergone QC and and been checked by a human expert
- parallel: if True, parallelizes the data retrieval process to speed it up
- progress: if True, will display a progress bar of data retrieval
- cache: I’m not sure what this does
- chunks_maxsize: specifies how to chunk the data request into smaller domains
Once “f” is defined, we can specify f.region(BOX) and load our data.
Construct a fetcher object¶
%%time
# f = DataFetcher(ds='bgc', mode='expert', params='all', parallel=True, progress=True).region(BOX).load() # Fetch everything !
f = DataFetcher(ds='phy', mode='research', params='all',
parallel=True, progress=True, cache=False,
chunks_maxsize={'time': 30},
)
f = f.region(BOX).load()
fExtract the data from the fetcher object**¶
Once the data is loaded, we can extract our data as an xarray dataset. Using f.data, the default output is a 1D array of all measurements across all profiles.
ds_points = f.datads_pointsConverting to a 2D array of profiles
Using the dataset
Note that each N_PROF is unique, although the dataset does not include identifying metadata for the profiles, such as WMO number.
ds_profiles = ds_points.argo.point2profile();ds_profilesExtract float metadata from the fetcher object¶
Float metadata, including the float’s unique WMO number, and each profile’s cycle number, are retrieved as a pandas dataframe using f.index
f.indexBasic data visualization¶
argopy includes some built-in data visualization functions
Here is the default map function, which plots each float’s trajectory, colored by the float.
scatter_map(ds_profiles);We can also zoom out and see where the data globally
fig, ax = scatter_map(ds_profiles,
figsize=(10,6),
set_global=True,
markersize=2,
markeredgecolor=None,
legend_title='Floats WMO',
cmap='Set2')b) Fetching data for a specific float(s)¶
This works much the same as the example above. However, instead of requesting a BOX with spatiotemporal bounds, we request a specific float by its unique WMO number. For multiple floats, simply pass a list of WMO numbers
%%time
f = DataFetcher(ds='phy', mode='research', params='all',
parallel=True, progress=True, cache=False,
chunks_maxsize={'time': 30},
)
# We use the f.float() method to fetch data from a specific float (using its WMO#, here 5904673)
# To request multiple floats, simply pass a list of multiple WMO numbers, e.g. [5904673, 5904672]
f = f.float(5904673).load();
fExtracting and manipulating the data¶
As before, we extract the data as a 1D array of measurements in xarray, and convert that into a 2D array of profiles using ds.argo.point2profile()
ds_points = f.data
ds_profiles = ds_points.argo.point2profile();Visualizing the data¶
This float is from the Southern Ocean’s Pacific sector
fig, ax = scatter_map(ds_profiles,
figsize=(10,6),
set_global=True,
markersize=2,
markeredgecolor=None,
legend_title='Floats WMO',
cmap='Set2')Now let’s plot the float’s temperature profiles over its trajectory
# We use xarray's built-in plotting function on the temperature data array
# We transpose it so that the vertical dimension (N_LEVELS) is on the y-axis
ds_profiles.TEMP.transpose().plot()
plt.gca().invert_yaxis() # Invert the y-axis so the ocean's surface is at the topc) Fetching data for a specific float profile(s)¶
Let’s narrow it down even further, and request a single profile using the fetcher’s f.profile() method, and passing the float’s unique WMO number and the profile number. To request multiple profiles, simply pass a list of profile numbers
%%time
f = DataFetcher(ds='phy', mode='research', params='all',
parallel=True, progress=True, cache=False,
chunks_maxsize={'time': 30},
)
# We use the f.profile() method to fetch data from a specific profile using the float WMO number and profile number
# To request multiple profiles, simply pass a list of multiple profile numbers, e.g. (5904673,[1,2,3])
f = f.profile(5904673,30).load();
fExtracting and manipulating the data¶
Once again, we extract the data as a 1D array of measurements in xarray, and convert that into a 2D array of profiles using ds.argo.point2profile()
ds_points = f.data
ds_profiles = ds_points.argo.point2profile();Visualizing the data¶
Let’s plot the vertical temperature and salinity profiles
plt.plot(ds_profiles.sel(N_PROF=0).TEMP.data,ds_profiles.sel(N_PROF=0).PRES.data) # Plot Temperature versus Pressure (i.e. depth)
plt.gca().invert_yaxis() # Invert the axis to put the surface at the top
plt.xlabel('Temperature (C)')
plt.ylabel('Pressure (dbar)')
plt.title('Temperature profile: Float 5904673, Profile 30')
plt.plot(ds_profiles.sel(N_PROF=0).PSAL.data,ds_profiles.sel(N_PROF=0).PRES.data) # Plot Temperature versus Pressure (i.e. depth)
plt.gca().invert_yaxis() # Invert the axis to put the surface at the top
plt.xlabel('Practical Salinity (psu)')
plt.ylabel('Pressure (dbar)')
plt.title('Salinity profile: Float 5904673, Profile 30')
3. Querying Data with Argovis¶
Argovis provides an API that allows us to interact with Argo data while only downloading the exact subsets of data needed for analysis. Our examples here are modified from the tutorial notebooks released by Argovis. We showcase only a few of the functionalities, but more information can be found in the previous link.
The introduction published by Argovis:
“Argovis is a REST API and web application for searching, downloading, co-locating and visualizing oceanographic data, including Argo array data, ship-based profile data, data from the Global Drifter Program, tropical cyclone data, and several gridded products. Our API is meant to be integrated into living documents like Jupyter notebooks and analyses intended to update their consumption of Argo data in near-real-time, and our web frontend is intended to make it easy for students and educators to explore data about Earth’s oceans at will.”
Argovis should be cited as:
Tucker, T., D. Giglio, M. Scanderbeg, and S.S.P. Shen: Argovis: A Web Application for Fast Delivery, Visualization, and Analysis of Argo Data. J. Atmos. Oceanic Technol., 37, 401–416, Tucker et al. (2020)
Getting started with argovisHelpers¶
From the Argovis tutorial:
In order to allocate Argovis’s limited computing resources fairly, users are encouraged to register and request a free API key. This works like a password that identifies your requests to Argovis. To do so:
- Visit https://
argovis -keygen .colorado .edu/ - Fill out the form under New Account Registration
- An API key will be emailed to you shortly.
Treat this API key like a password - don’t share it or leave it anywhere public. If you ever forget it or accidentally reveal it to a third party, see the same website above to change or deactivate your token.
Put your API key in the quotes in the variable below before moving on:
API_ROOT='https://argovis-api.colorado.edu/'
API_KEY='de6ee72a54bc5ca29dee5c801cab13fa4a354985'Getting Argo data documents¶
Before actually getting Argo measurements, we can query information about the profile (including pointers to the metadata).
argoSearch = {
'startDate': '2013-05-01T00:00:00Z',
'endDate': '2023-05-01T00:00:00Z',
'center': '-22.5,0',
'radius': 100
}
argoProfiles = avh.query('argo', options=argoSearch, apikey=API_KEY, apiroot=API_ROOT)
argoProfiles[0]argoProfiles[0]['_id']Note that the first object in argoProfiles is a single vertical Argo “profile”.
The first 7 digits of argoProfiles[0]['_id'] refer to a float’s WMO unique identification number.
The last three digits are the profile number.
In the above example, we are looking at data from the 256th profile from float WMO #1901820.
We can get more information about this particular float by querying argo/meta.
metaOptions = {
'id': argoProfiles[0]['metadata'][0]
}
argoMeta = avh.query('argo/meta', options=metaOptions, apikey=API_KEY, apiroot=API_ROOT)
argoMetaWe can also specify all of the profiles taken from the same float with WMO ID 1901820.
platformSearch = {
'platform': argoMeta[0]['platform']
}
platformProfiles = avh.query('argo', options=platformSearch, apikey=API_KEY, apiroot=API_ROOT)
print(len(platformProfiles))Making data queries¶
Now, we want to retrieve actual measurements. We can use any number of identifiers.
Below, we are specifying float WMO 4901283 and profile #003. The data variable can be:
- A comma separated list of variable names, e.g.
'temperature, doxy' 'all', meaning get all available variables.
dataQuery = {
'id': '4901283_003',
'data': 'all'
}
profile = avh.query('argo', options=dataQuery, apikey=API_KEY, apiroot=API_ROOT)
# avh.data_inflate(profile[0])[0:10]We can query float profiles within larger bounds:
dataQuery = {
'startDate': '2020-01-01T00:00:00Z',
'endDate': '2024-01-01T00:00:00Z',
'polygon': [[-150,-30],[-155,-30],[-155,-35],[-150,-35],[-150,-30]],
'data': 'doxy'
}
profiles = avh.query('argo', options=dataQuery, apikey=API_KEY, apiroot=API_ROOT)inflated_data = avh.data_inflate(profiles[0])
inflated_data[0:10]Querying within geospatial bounds¶
qs = {
'startDate': '2017-08-01T00:00:00Z',
'endDate': '2017-09-01T00:00:00Z',
'box': [[-20,70],[20,72]]
}
profiles = avh.query('argo', options=qs, apikey=API_KEY, apiroot=API_ROOT)
latitudes = [x['geolocation']['coordinates'][1] for x in profiles]
print(min(latitudes))
print(max(latitudes))as well text! Similarly, you have access to other equation functionality via MathJax (demo below from link),
Check out any number of helpful Markdown resources for further customizing your notebooks and the Jupyter docs for Jupyter-specific formatting information. Don’t hesitate to ask questions if you have problems getting it to look just right.
Last Section¶
If you’re comfortable, and as we briefly used for our embedded logo up top, you can embed raw html into Jupyter Markdown cells (edit to see):
Info
Your relevant information here!Feel free to copy this around and edit or play around with yourself. Some other admonitions you can put in:
Success
We got this done after all!Warning
Be careful!Danger
Scary stuff be here.We also suggest checking out Jupyter Book’s brief demonstration on adding cell tags to your cells in Jupyter Notebook, Lab, or manually. Using these cell tags can allow you to customize how your code content is displayed and even demonstrate errors without altogether crashing our loyal army of machines!
Summary¶
Add one final --- marking the end of your body of content, and then conclude with a brief single paragraph summarizing at a high level the key pieces that were learned and how they tied to your objectives. Look to reiterate what the most important takeaways were.
What’s next?¶
Let Jupyter book tie this to the next (sequential) piece of content that people could move on to down below and in the sidebar. However, if this page uniquely enables your reader to tackle other nonsequential concepts throughout this book, or even external content, link to it here!
Resources and references¶
Finally, be rigorous in your citations and references as necessary. Give credit where credit is due. Also, feel free to link to relevant external material, further reading, documentation, etc. Then you’re done! Give yourself a quick review, a high five, and send us a pull request. A few final notes:
Kernel > Restart Kernel and Run All Cells...to confirm that your notebook will cleanly run from start to finishKernel > Restart Kernel and Clear All Outputs...before committing your notebook, our machines will do the heavy lifting- Take credit! Provide author contact information if you’d like; if so, consider adding information here at the bottom of your notebook
- Give credit! Attribute appropriate authorship for referenced code, information, images, etc.
- Only include what you’re legally allowed: no copyright infringement or plagiarism
Thank you for your contribution!
- Tucker, T., Giglio, D., Scanderbeg, M., & Shen, S. S. P. (2020). Argovis: A Web Application for Fast Delivery, Visualization, and Analysis of Argo Data. Journal of Atmospheric and Oceanic Technology, 37(3), 401–416. 10.1175/jtech-d-19-0041.1